Skip to content

chore(deps-dev): bump the dev-minor-and-patch-dependencies group across 1 directory with 13 updates - #9691

Closed
dependabot[bot] wants to merge 5 commits into
masterfrom
dependabot/npm_and_yarn/dev-minor-and-patch-dependencies-8f20b514ec
Closed

chore(deps-dev): bump the dev-minor-and-patch-dependencies group across 1 directory with 13 updates#9691
dependabot[bot] wants to merge 5 commits into
masterfrom
dependabot/npm_and_yarn/dev-minor-and-patch-dependencies-8f20b514ec

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 5, 2026

Copy link
Copy Markdown
Contributor

Bumps the dev-minor-and-patch-dependencies group with 13 updates in the / directory:

Package From To
@eslint/eslintrc 3.3.5 3.3.6
@openfeature/core 1.11.0 1.12.0
@openfeature/server-sdk 1.22.0 1.23.0
axios 1.18.1 1.19.0
eslint 10.7.0 10.8.0
eslint-plugin-cypress 6.4.2 6.4.3
eslint-plugin-jsdoc 63.0.12 63.3.2
eslint-plugin-n 18.2.1 18.2.2
globals 17.7.0 17.8.0
minimatch 10.2.5 10.2.6
nock 14.0.16 14.0.17
p-limit 7.3.0 7.3.1
sinon 22.0.0 22.1.0

Updates @eslint/eslintrc from 3.3.5 to 3.3.6

Release notes

Sourced from @​eslint/eslintrc's releases.

eslintrc: v3.3.6

3.3.6 (2026-07-10)

Bug Fixes

  • update js-yaml to 4.3.0 to address security vulnerability (#235) (0c5de74)
Changelog

Sourced from @​eslint/eslintrc's changelog.

3.3.6 (2026-07-10)

Bug Fixes

  • update js-yaml to 4.3.0 to address security vulnerability (#235) (0c5de74)
Commits

Updates @openfeature/core from 1.11.0 to 1.12.0

Release notes

Sourced from @​openfeature/core's releases.

core: v1.12.0

1.12.0 (2026-07-27)

✨ New Features

  • core: pass bound domain to provider initialize and enforce domain-scoped binding (#1433) (a98f914)
Commits
  • 090bf55 chore(main): release core 1.12.0 (#1437)
  • a98f914 feat(core): pass bound domain to provider initialize and enforce domain-scope...
  • bc470dc test: add package export smoke checks (#1406)
  • 3c01041 chore(main): release react-sdk 1.4.1 (#1427)
  • c3833a7 chore(deps): update angular monorepo to v21.2.17 (#1404)
  • 407e06e chore(deps): update dependency rollup-plugin-dts to v6.4.1 (#1393)
  • 3f6ac84 chore(deps): update angular-cli monorepo to v21.2.15 (#1411)
  • 274ea74 chore(deps): update react monorepo to v18.3.31 (#1424)
  • f6da4e2 chore(deps): update dependency ts-jest to v29.4.11 (#1423)
  • 7a7f795 chore(deps): update dependency rollup to v4.62.0 (#1391)
  • Additional commits viewable in compare view

Updates @openfeature/server-sdk from 1.22.0 to 1.23.0

Release notes

Sourced from @​openfeature/server-sdk's releases.

server-sdk: v1.23.0

1.23.0 (2026-07-28)

✨ New Features

  • core: pass bound domain to provider initialize and enforce domain-scoped binding (#1433) (a98f914)
Commits
  • ba1bfd0 chore(main): release server-sdk 1.23.0 (#1438)
  • 0fffbc0 chore(main): release web-sdk 1.10.0 (#1439)
  • 090bf55 chore(main): release core 1.12.0 (#1437)
  • a98f914 feat(core): pass bound domain to provider initialize and enforce domain-scope...
  • bc470dc test: add package export smoke checks (#1406)
  • 3c01041 chore(main): release react-sdk 1.4.1 (#1427)
  • c3833a7 chore(deps): update angular monorepo to v21.2.17 (#1404)
  • 407e06e chore(deps): update dependency rollup-plugin-dts to v6.4.1 (#1393)
  • 3f6ac84 chore(deps): update angular-cli monorepo to v21.2.15 (#1411)
  • 274ea74 chore(deps): update react monorepo to v18.3.31 (#1424)
  • Additional commits viewable in compare view

Updates axios from 1.18.1 to 1.19.0

Release notes

Sourced from axios's releases.

v1.19.0 - July 22, 2026

This release raises the form-data security floor, adds configuration and type-system capabilities, and fixes NO_PROXY matching, interceptor errors, progress reporting, and serialization edge cases.

🔒 Security Fixes

  • Multipart Form Data: Raised the form-data dependency floor to ^4.0.6, preventing fresh installations from resolving versions affected by the CRLF injection vulnerability GHSA-hmw2-7cc7-3qxx (GHSA-hmw2-7cc7-3qxx). (#11028)

🚀 New Features

  • Configuration Extensibility: Preserved own-enumerable symbol-keyed fields through mergeConfig and added a generic params type across public TypeScript declarations, responses, errors, adapters, and serializers. (#11043, #11081)
  • Header Parameter Parsing: Added the opt-in AxiosHeaders.parseParameters() parser for quote-aware, RFC-style HTTP parameter parsing while preserving legacy parsing behavior. (#11051)
  • HTTP Status Codes: Added the missing Cloudflare 520 WebServerReturnsAnUnknownError status and matching ESM/CJS declarations. (#11067)

🐛 Bug Fixes

  • Form Data Conversion: Limited formDataToJSON path splitting to dot and bracket notation, preserving literal punctuation in keys, and removed browser-facing Buffer.from usage from toFormData to avoid unnecessary polyfills. (#11006, #11018)
  • Proxy Bypass: Canonicalized IPv4 shorthand, octal, and hexadecimal forms during NO_PROXY matching and honored * entries within comma- or space-separated bypass lists. (#11029, #11053)
  • Cancellation: Propagated already-aborted input signals immediately when composing abort signals. (#11035)
  • Header Handling: Preserved empty first values for duplicate singleton headers and made AxiosHeaders#getSetCookie() consistently return arrays for present values. (#11036, #11037)
  • URL Handling: Included normalized, safely redacted offending URLs in malformed-protocol errors and removed repeated trailing slashes when combining base URLs. (#11024, #11038)
  • Progress Events: Clamped malformed negative progress values to zero and ensured final Node.js download progress events are delivered before streamed responses close. (#11039, #11040)
  • Error and JSON Serialization: Serialized Set values as arrays in JSON-compatible snapshots and synthesized useful AxiosError messages from otherwise-empty AggregateError instances. (#11044, #11059)
  • Content-Length Enforcement: Corrected base64 data: URL size estimation so maxContentLength is enforced consistently by the HTTP and Fetch adapters. (#11061)
  • Synchronous Interceptors: Prevented requests from being dispatched after synchronous request interceptors fail unless their paired rejection handler resolves successfully. (#11071)

🔧 Maintenance & Chores

  • Dependencies: Updated development and test tooling, the docs fixture's Axios version, and GitHub Actions integrations including Checkout, Setup Node, Setup Deno, and Zizmor. (#11031, #11055, #11056, #11058, #11079, #11080, #11088, #11089, #11090)
  • Build Outputs: Limited sourcemap generation to published minified bundles, removing broken map references from non-minified builds. (#11054)
  • Form Data Internals: Centralized FormData header handling and made the Node.js adapter tolerate getHeaders() returning undefined under the content-only policy. (#11062)
  • Developer Experience: Ignored common local AI-tooling directories and fixed a constant-reassignment crash when the development sandbox serves its root path. (#11032, #11073)
  • Documentation: Updated sponsor information, clarified that baseURL is not a path-security boundary, scoped provenance claims to attested releases, and corrected the configuration-defaults documentation. (#11041, #11068, #11076, #11078)
  • Publishing: Simplified v1 publishing to use the npm version bundled with Node.js 26 and updated package metadata for the 1.19.0 release. (#11083, #11095)

🌟 New Contributors

We are thrilled to welcome our new contributors. Thank you for helping improve Axios:

... (truncated)

Changelog

Sourced from axios's changelog.

v1.19.0 — July 22, 2026

This release raises the form-data security floor, adds configuration and type-system capabilities, and fixes NO_PROXY matching, interceptor errors, progress reporting, and serialization edge cases.

🔒 Security Fixes

  • Multipart Form Data: Raised the form-data dependency floor to ^4.0.6, preventing fresh installations from resolving versions affected by the CRLF injection vulnerability GHSA-hmw2-7cc7-3qxx (GHSA-hmw2-7cc7-3qxx). (#11028)

🚀 New Features

  • Configuration Extensibility: Preserved own-enumerable symbol-keyed fields through mergeConfig and added a generic params type across public TypeScript declarations, responses, errors, adapters, and serializers. (#11043, #11081)
  • Header Parameter Parsing: Added the opt-in AxiosHeaders.parseParameters() parser for quote-aware, RFC-style HTTP parameter parsing while preserving legacy parsing behavior. (#11051)
  • HTTP Status Codes: Added the missing Cloudflare 520 WebServerReturnsAnUnknownError status and matching ESM/CJS declarations. (#11067)

🐛 Bug Fixes

  • Form Data Conversion: Limited formDataToJSON path splitting to dot and bracket notation, preserving literal punctuation in keys, and removed browser-facing Buffer.from usage from toFormData to avoid unnecessary polyfills. (#11006, #11018)

  • Proxy Bypass: Canonicalized IPv4 shorthand, octal, and hexadecimal forms during NO_PROXY matching and honored * entries within comma- or space-separated bypass lists. (#11029, #11053)

  • Cancellation: Propagated already-aborted input signals immediately when composing abort signals. (#11035)

  • Header Handling: Preserved empty first values for duplicate singleton headers and made AxiosHeaders#getSetCookie() consistently return arrays for present values. (#11036, #11037)

  • URL Handling: Included normalized, safely redacted offending URLs in malformed-protocol errors and removed repeated trailing slashes when combining base URLs. (#11008, #11038)

  • Progress Events: Clamped malformed negative progress values to zero and ensured final Node.js download progress events are delivered before streamed responses close. (#11039, #11040)

  • Error and JSON Serialization: Serialized Set values as arrays in JSON-compatible snapshots and synthesized useful AxiosError messages from otherwise-empty AggregateError instances. (#11044, #11059)

  • Content-Length Enforcement: Corrected base64 data: URL size estimation so maxContentLength is enforced consistently by the HTTP and Fetch adapters. (#11061)

  • Synchronous Interceptors: Prevented requests from being dispatched after synchronous request interceptors fail unless their paired rejection handler resolves successfully. (#11071)

🔧 Maintenance & Chores

  • Dependencies: Updated development and test tooling, the docs fixture's Axios version, and GitHub Actions integrations including Checkout, Setup Node, Setup Deno, and Zizmor. (#11031, #11055, #11056, #11058, #11079, #11080, #11088, #11089, #11090)
  • Build Outputs: Limited sourcemap generation to published minified bundles, removing broken map references from non-minified builds. (#11054)
  • Form Data Internals: Centralized FormData header handling and made the Node.js adapter tolerate getHeaders() returning undefined under the content-only policy. (#11062)
  • Developer Experience: Ignored common local AI-tooling directories and fixed a constant-reassignment crash when the development sandbox serves its root path. (#11032, #11073)
  • Documentation: Updated sponsor information, clarified that baseURL is not a path-security boundary, scoped provenance claims to attested releases, and corrected the configuration-defaults documentation. (#11041, #11068, #11076, #11078)
  • Publishing: Simplified v1 publishing to use the npm version bundled with Node.js 26 and updated package metadata for the 1.19.0 release. (#11083, #11095)

🌟 New Contributors

We are thrilled to welcome our new contributors. Thank you for helping improve Axios:

... (truncated)

Commits
  • 311fcc5 chore(release): prepare release 1.19.0 (#11095)
  • cb4fd74 chore(deps): bump axios from 1.16.1 to 1.18.1 in /docs (#11088)
  • 004c93a chore(deps): bump actions/setup-node from 6.4.0 to 7.0.0 in the github-action...
  • 122edde chore(deps-dev): bump the development_dependencies group with 3 updates (#11089)
  • c44f8d0 ci: use bundled npm for v1 publish (#11083)
  • 878bb29 fix(sandbox): resolve TypeError on constant variable path assignment (#11073)
  • a092bae fix(core): synchronous interceptors swallow errors and proceed with request (...
  • 3041b8f feat(HttpStatusCode): add missing 520 status code (#11067)
  • 58b16c8 refactor(helpers): extract duplicated setFormDataHeaders into a shared helper...
  • 3077e62 feat(types): Allow the Params property to be typed, instead of any (#11081)
  • Additional commits viewable in compare view

Updates eslint from 10.7.0 to 10.8.0

Release notes

Sourced from eslint's releases.

v10.8.0

Features

  • 2fee9bb feat: export ConfigObject from eslint/config (#21082) (sethamus)

Bug Fixes

  • 6b8d2f7 fix: escape reserved characters in rule id in html formatter (#21129) (Francesco Trotta)
  • 9091071 fix: prevent no-unreachable-loop crash when all loop types are ignored (#21116) (Pixel)
  • e23fafe fix: prefer-object-spread add semicolon when adding parenthesis (#21081) (synthex-byte)
  • 20b5ad0 fix: quadratic-time regex in prefer-template (#21096) (Milos Djermanovic)
  • 8b6f6c0 fix: apply ignore configs to computed methods in class-methods-use-this (#21094) (Pixel)
  • b2c608c fix: NewExpression with parenthesized callee in preserve-caught-error (#21083) (Francesco Trotta)

Documentation

  • 6ddf858 docs: fix broken Specify Parser Options anchor link (#21106) (Minsu)
  • 784dfbe docs: Clarify no-eq-null description (#21120) (Park Harin)
  • 7ec733a docs: Fix typos and grammar in glossary (#21095) (Marry (Subin Yang))
  • 92bb13f docs: replace quake link (#21108) (Jung Hyeon Jun)
  • 68eb4a5 docs: fix broken Specify Globals anchor links in rule pages (#21103) (Minsu)
  • d28f697 docs: replace Code Climate CLI links with Qlty CLI links (#21099) (Jung Hyeon Jun)
  • eccc68d docs: correct --suppressions-location option description (#21093) (Ga eun Lee)
  • c5963f7 docs: Update README (GitHub Actions Bot)

Chores

  • 4fbf46d test: pin webpack version to 5.108.4 (#21137) (Francesco Trotta)
  • 2d063e2 chore: update HTTP URLs to HTTPS in JSDoc and comments (#21101) (Bo Hyun Kim)
  • eccbe7b test: add error locations to no-class-assign (#21123) (devoil)
  • e7d1e43 ci: bump actions/setup-go from 6 to 7 (#21118) (dependabot[bot])
  • e9d66d0 ci: bump actions/setup-node from 6 to 7 (#21119) (dependabot[bot])
  • ee225b6 test: Add error location details to no-eq-null rule (#21117) (Park Harin)
  • 044a627 chore: update minimatch to ^10.2.5 (#21107) (김채영)
  • fb09aa8 chore: update ecosystem plugins (#21115) (ESLint Bot)
  • 5abd878 test: add error locations to no-proto (#21114) (Gihyeon Jeong / 정기현)
  • 9715887 test: Add error location details to no-div-regex (#21110) (Park Harin)
  • a746ec6 test: add error locations to no-new-wrappers (#21109) (Gihyeon Jeong / 정기현)
  • 8dde645 test: add error locations to no-ex-assign (#21102) (devoil)
  • 13ab0ec test: add error locations to no-label-var (#21098) (Gihyeon Jeong / 정기현)
  • a99906f test: Add error location details to no-delete-var rule (#21105) (Park Harin)
  • c47e8dc chore: add missing backticks to languages/js/index.js (#21104) (beeen)
  • 0174428 chore: add missing backticks to translate-cli-options.js (#21097) (dongkyu lee)
  • 3d36589 chore: add missing backticks to serialization.js (#21091) (이규환)
  • dcc9312 test: add error locations to eqeqeq (#21090) (Ga eun Lee)
  • 2710b18 ci: Add explicit permissions to rebuild-docs-sites workflow (#21089) (Marry (Subin Yang))
  • 5d2f866 chore: update dependency prettier to v3.9.5 (#21086) (renovate[bot])
  • d584e31 chore: fix failing ecosystem test for eslint-plugin-unicorn (#21084) (Francesco Trotta)
  • bf3eda0 chore: update ecosystem plugins (#21079) (ESLint Bot)
Commits

Updates eslint-plugin-cypress from 6.4.2 to 6.4.3

Release notes

Sourced from eslint-plugin-cypress's releases.

v6.4.3

6.4.3 (2026-07-14)

Bug Fixes

  • docs: add no-and rule documentation to README (#379) (f1e2b93)
Commits
  • f1e2b93 fix(docs): add no-and rule documentation to README (#379)
  • b6bf0e1 chore(deps): update dependency vitest to ^4.1.10 (#386)
  • 028bced chore(deps): update dependency eslint-plugin-eslint-plugin to ^7.4.1 (#376)
  • 16fe16e chore(deps): update dependency cypress to ^15.18.1 (#375)
  • 3e15722 chore(deps): lock file maintenance (#367)
  • dd1f452 chore(deps): update dependency prettier to ^3.9.4 (#374)
  • d61010d chore(deps): update eslint to ^8.62.1 (#373)
  • c02f0bb chore(deps): update dependency prettier to ^3.9.3 (#371)
  • 07fea9d chore(deps): update dependency eslint to ^10.6.0 (#372)
  • c73ddd9 chore(deps): update node.js to v24.18.0 (#370)
  • Additional commits viewable in compare view

Updates eslint-plugin-jsdoc from 63.0.12 to 63.3.2

Release notes

Sourced from eslint-plugin-jsdoc's releases.

v63.3.2

63.3.2 (2026-07-28)

Bug Fixes

  • require-example: support fixer with 1-line JSDoc blocks; fixes #1736 (36f8e9e)

v63.3.1

63.3.1 (2026-07-27)

Bug Fixes

  • normalize-see-links: minimally escape link targets instead of encodeURI (#1735) (ae27cd2)

v63.3.0

63.3.0 (2026-07-26)

Features

  • normalize-see-links: autofix delimiter-colliding labels via escape round-trip (#1734) (cfe9cdb)

v63.2.2

63.2.2 (2026-07-24)

Bug Fixes

v63.2.1

63.2.1 (2026-07-23)

Bug Fixes

  • update jsdoccomment, spdx-expression-parse, devDeps.; fixes #1727 (#1728) (9fd2f28)

v63.2.0

63.2.0 (2026-07-19)

Features

  • normalize-see-links: add wrapBareUrls option (#1726) (77a7b1a)

v63.1.0

63.1.0 (2026-07-18)

... (truncated)

Commits
  • 7d5df2e chore: update devDeps.
  • 36f8e9e fix(require-example): support fixer with 1-line JSDoc blocks; fixes #1736
  • 1dbf404 chore: update jsdoccomment and devDeps.
  • ae27cd2 fix(normalize-see-links): minimally escape link targets instead of encodeURI ...
  • cfe9cdb feat(normalize-see-links): autofix delimiter-colliding labels via escape roun...
  • e62e746 docs: explain usage with defineConfig(); fixes #1729 (#1731)
  • 3663803 fix: update jsdoccomment and devDeps. (#1730)
  • 9fd2f28 fix: update jsdoccomment, spdx-expression-parse, devDeps.; fixes #1727 (#1728)
  • 77a7b1a feat(normalize-see-links): add wrapBareUrls option (#1726)
  • c03dd66 feat: add normalize-see-links rule (#1725)
  • Additional commits viewable in compare view

Updates eslint-plugin-n from 18.2.1 to 18.2.2

Release notes

Sourced from eslint-plugin-n's releases.

v18.2.2

18.2.2 (2026-07-11)

🩹 Fixes

  • Ignore HTTP imports in no-missing-import (#547) (3ff929d)
  • no-callback-literal: report object, array, and template literals (#552) (dca2330)
Changelog

Sourced from eslint-plugin-n's changelog.

18.2.2 (2026-07-11)

🩹 Fixes

  • Ignore HTTP imports in no-missing-import (#547) (3ff929d)
  • no-callback-literal: report object, array, and template literals (#552) (dca2330)
Commits

Updates globals from 17.7.0 to 17.8.0

Release notes

Sourced from globals's releases.

v17.8.0

  • Update globals (2026-07-01) (#347) 7394811

sindresorhus/globals@v17.7.0...v17.8.0

Commits

Updates minimatch from 10.2.5 to 10.2.6

Commits

Updates nock from 14.0.16 to 14.0.17

Release notes

Sourced from nock's releases.

v14.0.17

14.0.17 (2026-07-30)

Bug Fixes

  • remove interceptor from scope.interceptors on nock.removeInterceptor (#2997) (1ee467c)
Commits
  • 1ee467c fix: remove interceptor from scope.interceptors on nock.removeInterceptor (#2...
  • da20f4b chore(deps): bump actions/checkout from 6 to 7 (#2987)
  • See full diff in compare view

Updates p-limit from 7.3.0 to 7.3.1

Release notes

Sourced from p-limit's releases.

v7.3.1

  • Fix detached limit.map calls (#108) ef37eb2

sindresorhus/p-limit@v7.3.0...v7.3.1

Commits

Updates sinon from 22.0.0 to 22.1.0

Changelog

Sourced from sinon's changelog.

22.1.0

  • d36e921b fix: let returns override returnsArg (王胜)

    Signed-off-by: 王胜 2318857637@qq.com

  • 40c4caa0 fix: align restoreObject docs test with idempotent behavior (#2745) (Julia Miller)

    restoreObject was made idempotent in #2737 — it no longer throws for objects with no restorable methods. Updates the docs page and its corresponding test to reflect this.

  • a68dac19 fix: throw a clear error when throwArg index equals the argument count (#2743) (spokodev)
    • fix: throw a clear error when throwArg index equals the argument count

    spyCall.throwArg(pos) guarded with pos > this.args.length, so calling it with pos equal to the number of recorded arguments slipped past the guard and reached throw this.args[pos], throwing undefined instead of the intended TypeError. A thrown undefined cannot be inspected as an Error and is reported by test frameworks as no exception thrown.

    Use >= to match ensureArgs in behavior.js and the sibling callArg helpers, which already reject an out-of-range index with a clear error.

  • 9ea504e3 feat: make sinon.restoreObject idempotent (#2737) (Ilia Choly)

    Passing an object with no live fakes to restoreObject now restores nothing instead of throwing, giving it symmetry with sinon.restore() and sandbox.restore(). The strict "found no methods" check is retained for spy(object) and stub(object), which now use a dedicated walkObjectStrict export, while restoreObject uses the loose walkObject. Passing a falsy value still throws.

    Fixes #2736

  • 4db4feff fix: preserve fake undefined argument validation (Vishal Kumar Singh)
  • 755a40d7 fix: isolate callId counter per sandbox for parallel test support (Vishal Kumar Singh)

    The global callId counter in proxy-invoke.js caused calledImmediatelyBefore and calledImmediatelyAfter to fail when tests run in parallel with separate sandboxes. Each sandbox now maintains its own callId counter, passed through the spy/stub/fake creation chain via a context object.

    Fixes #2472

Released by Morgan Roderick on 2026-07-20.

Commits

…ss 1 directory with 13 updates

Bumps the dev-minor-and-patch-dependencies group with 13 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@eslint/eslintrc](https://github.com/eslint/eslintrc) | `3.3.5` | `3.3.6` |
| [@openfeature/core](https://github.com/open-feature/js-sdk) | `1.11.0` | `1.12.0` |
| [@openfeature/server-sdk](https://github.com/open-feature/js-sdk) | `1.22.0` | `1.23.0` |
| [axios](https://github.com/axios/axios) | `1.18.1` | `1.19.0` |
| [eslint](https://github.com/eslint/eslint) | `10.7.0` | `10.8.0` |
| [eslint-plugin-cypress](https://github.com/cypress-io/eslint-plugin-cypress) | `6.4.2` | `6.4.3` |
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) | `63.0.12` | `63.3.2` |
| [eslint-plugin-n](https://github.com/eslint-community/eslint-plugin-n) | `18.2.1` | `18.2.2` |
| [globals](https://github.com/sindresorhus/globals) | `17.7.0` | `17.8.0` |
| [minimatch](https://github.com/isaacs/minimatch) | `10.2.5` | `10.2.6` |
| [nock](https://github.com/nock/nock) | `14.0.16` | `14.0.17` |
| [p-limit](https://github.com/sindresorhus/p-limit) | `7.3.0` | `7.3.1` |
| [sinon](https://github.com/sinonjs/sinon) | `22.0.0` | `22.1.0` |



Updates `@eslint/eslintrc` from 3.3.5 to 3.3.6
- [Release notes](https://github.com/eslint/eslintrc/releases)
- [Changelog](https://github.com/eslint/eslintrc/blob/main/CHANGELOG.md)
- [Commits](eslint/eslintrc@eslintrc-v3.3.5...eslintrc-v3.3.6)

Updates `@openfeature/core` from 1.11.0 to 1.12.0
- [Release notes](https://github.com/open-feature/js-sdk/releases)
- [Commits](open-feature/js-sdk@core-v1.11.0...core-v1.12.0)

Updates `@openfeature/server-sdk` from 1.22.0 to 1.23.0
- [Release notes](https://github.com/open-feature/js-sdk/releases)
- [Commits](open-feature/js-sdk@server-sdk-v1.22.0...server-sdk-v1.23.0)

Updates `axios` from 1.18.1 to 1.19.0
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.18.1...v1.19.0)

Updates `eslint` from 10.7.0 to 10.8.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v10.7.0...v10.8.0)

Updates `eslint-plugin-cypress` from 6.4.2 to 6.4.3
- [Release notes](https://github.com/cypress-io/eslint-plugin-cypress/releases)
- [Commits](cypress-io/eslint-plugin-cypress@v6.4.2...v6.4.3)

Updates `eslint-plugin-jsdoc` from 63.0.12 to 63.3.2
- [Release notes](https://github.com/gajus/eslint-plugin-jsdoc/releases)
- [Commits](gajus/eslint-plugin-jsdoc@v63.0.12...v63.3.2)

Updates `eslint-plugin-n` from 18.2.1 to 18.2.2
- [Release notes](https://github.com/eslint-community/eslint-plugin-n/releases)
- [Changelog](https://github.com/eslint-community/eslint-plugin-n/blob/master/CHANGELOG.md)
- [Commits](eslint-community/eslint-plugin-n@v18.2.1...v18.2.2)

Updates `globals` from 17.7.0 to 17.8.0
- [Release notes](https://github.com/sindresorhus/globals/releases)
- [Commits](sindresorhus/globals@v17.7.0...v17.8.0)

Updates `minimatch` from 10.2.5 to 10.2.6
- [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md)
- [Commits](isaacs/minimatch@v10.2.5...v10.2.6)

Updates `nock` from 14.0.16 to 14.0.17
- [Release notes](https://github.com/nock/nock/releases)
- [Changelog](https://github.com/nock/nock/blob/main/CHANGELOG.md)
- [Commits](nock/nock@v14.0.16...v14.0.17)

Updates `p-limit` from 7.3.0 to 7.3.1
- [Release notes](https://github.com/sindresorhus/p-limit/releases)
- [Commits](sindresorhus/p-limit@v7.3.0...v7.3.1)

Updates `sinon` from 22.0.0 to 22.1.0
- [Release notes](https://github.com/sinonjs/sinon/releases)
- [Changelog](https://github.com/sinonjs/sinon/blob/main/CHANGES.md)
- [Commits](sinonjs/sinon@v22.0.0...v22.1.0)

---
updated-dependencies:
- dependency-name: "@eslint/eslintrc"
  dependency-version: 3.3.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-minor-and-patch-dependencies
- dependency-name: "@openfeature/core"
  dependency-version: 1.12.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-minor-and-patch-dependencies
- dependency-name: "@openfeature/server-sdk"
  dependency-version: 1.23.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-minor-and-patch-dependencies
- dependency-name: axios
  dependency-version: 1.19.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-minor-and-patch-dependencies
- dependency-name: eslint
  dependency-version: 10.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-minor-and-patch-dependencies
- dependency-name: eslint-plugin-cypress
  dependency-version: 6.4.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-minor-and-patch-dependencies
- dependency-name: eslint-plugin-jsdoc
  dependency-version: 63.3.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-minor-and-patch-dependencies
- dependency-name: eslint-plugin-n
  dependency-version: 18.2.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-minor-and-patch-dependencies
- dependency-name: globals
  dependency-version: 17.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-minor-and-patch-dependencies
- dependency-name: minimatch
  dependency-version: 10.2.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-minor-and-patch-dependencies
- dependency-name: nock
  dependency-version: 14.0.17
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-minor-and-patch-dependencies
- dependency-name: p-limit
  dependency-version: 7.3.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-minor-and-patch-dependencies
- dependency-name: sinon
  dependency-version: 22.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-minor-and-patch-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependabot dependencies javascript Pull requests that update javascript code semver-patch labels Aug 5, 2026
@dependabot
dependabot Bot requested a review from a team as a code owner August 5, 2026 00:56
@dependabot dependabot Bot added semver-patch dependencies javascript Pull requests that update javascript code dependabot labels Aug 5, 2026
dd-octo-sts[bot]
dd-octo-sts Bot previously approved these changes Aug 5, 2026
@dd-octo-sts
dd-octo-sts Bot enabled auto-merge (squash) August 5, 2026 00:57
@dd-octo-sts

dd-octo-sts Bot commented Aug 5, 2026

Copy link
Copy Markdown
Contributor

Overall package size

Self size: 7.96 MB
Deduped: 8.62 MB
No deduping: 8.62 MB

Dependency sizes | name | version | self size | total size | |------|---------|-----------|------------| | import-in-the-middle | 3.3.3 | 125.43 kB | 441.68 kB | | opentracing | 0.14.7 | 194.81 kB | 194.81 kB | | dc-polyfill | 0.1.11 | 25.74 kB | 25.74 kB |

🤖 This report was automatically generated by heaviest-objects-in-the-universe

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 1a65f7e6f5

ℹ️ About Codex in GitHub

Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".

Comment thread package.json
"eslint-plugin-jsdoc": "^63.3.2",
"eslint-plugin-mocha": "^11.3.0",
"eslint-plugin-n": "^18.2.1",
"eslint-plugin-n": "^18.2.2",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Avoid bumping eslint-plugin-n without fixing callbacks

With eslint-plugin-n at 18.2.2, the enabled n/no-callback-literal rule now also reports object/array/template literals in callback/cb error positions, and this repo still has direct object calls such as callback({ statusCode: 200, ... }) in packages/dd-trace/test/opentelemetry/traces.spec.js:80 and cb({ [targetClass]: TargetClass }) in packages/datadog-instrumentations/test/openai-lifecycle.spec.js:126. Since the root lint config keeps this rule as error, npm run lint will fail after this dependency bump unless those existing call sites are fixed or explicitly exempted.

Useful? React with 👍 / 👎.

@datadog-datadog-prod-us1-2

datadog-datadog-prod-us1-2 Bot commented Aug 5, 2026

Copy link
Copy Markdown

Pipelines  Tests

Unblock PR with BitsAI

⚠️ Warnings

🚦 3 Pipeline jobs failed

DataDog/apm-reliability/dd-trace-js | benchmark: [26, 3]   View in Datadog   GitLab

Project | lint   View in Datadog   GitHub Actions

🔧 Fix in code. This looks caused by changes in this PR. 7 linting errors due to 'Unexpected literal in error position of callback' at multiple lines.

All Green | all-green   View in Datadog   GitHub Actions

📋 Copy prompt for your agent
CI on my pull request is failing. Help me find and fix the root cause of each failing job below — they were flagged as caused by changes in this PR, so focus on the diff. For each job, explain the failure and propose a fix.

Branch: dependabot/npm_and_yarn/dev-minor-and-patch-dependencies-8f20b514ec

Project | lint
Commit: 2e4b264097ccc14e1f50747a9a385ff04114bd97
Error (code / quality):
7 linting errors due to 'Unexpected literal in error position of callback' at multiple lines.
CI job: https://github.com/DataDog/dd-trace-js/actions/runs/31176587583/job/92860756855

ℹ️ Info

No other issues found (see more)

🧪 All tests passed
❄️ No new flaky tests detected

🎯 Code Coverage (details)
Patch Coverage: 100.00%
Overall Coverage: 97.27% (-1.28%)

Useful? React with 👍 / 👎

This comment will be updated automatically if new data arrives.
🔗 Commit SHA: 2e55113 | Docs | Datadog PR Page | Give us feedback!

@codecov

codecov Bot commented Aug 5, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 97.27%. Comparing base (b9b4e0b) to head (2e55113).
⚠️ Report is 1 commits behind head on master.

Additional details and impacted files
@@            Coverage Diff             @@
##           master    #9691      +/-   ##
==========================================
- Coverage   98.55%   97.27%   -1.28%     
==========================================
  Files         966      966              
  Lines      138858   138858              
  Branches    11993    11571     -422     
==========================================
- Hits       136845   135071    -1774     
- Misses       2013     3787    +1774     
Flag Coverage Δ
aiguard 56.99% <ø> (-0.03%) ⬇️
aiguard-integration 55.90% <ø> (ø)
apm-bucket-0 57.24% <ø> (-0.03%) ⬇️
apm-bucket-1 63.39% <ø> (-0.02%) ⬇️
apm-bucket-2 62.24% <ø> (-0.03%) ⬇️
apm-bucket-3 59.82% <ø> (-0.03%) ⬇️
apm-capabilities-tracing 62.36% <ø> (ø)
apm-integrations-aerospike 56.30% <ø> (-0.03%) ⬇️
apm-integrations-confluentinc-kafka-javascript 61.22% <ø> (-0.03%) ⬇️
apm-integrations-couchbase 56.69% <ø> (-0.06%) ⬇️
apm-integrations-http 61.93% <ø> (-0.02%) ⬇️
apm-integrations-kafkajs 61.74% <ø> (-0.03%) ⬇️
apm-integrations-next 59.42% <ø> (-0.03%) ⬇️
apm-integrations-prisma 58.53% <ø> (-0.02%) ⬇️
appsec 72.17% <ø> (-0.05%) ⬇️
appsec-express_fastify_graphql 69.48% <ø> (-0.02%) ⬇️
appsec-integration 50.17% <ø> (ø)
appsec-kafka_ldapjs_lodash 63.44% <ø> (-0.02%) ⬇️
appsec-mongodb-core_mongoose_mysql 66.92% <ø> (-0.02%) ⬇️
appsec-next 56.67% <ø> (-0.02%) ⬇️
appsec-node-serialize_passport_postgres 66.33% <ø> (-0.02%) ⬇️
appsec-sourcing_stripe_template 64.75% <ø> (-0.02%) ⬇️
debugger 64.29% <ø> (-0.03%) ⬇️
instrumentations-bucket-0 51.68% <ø> (-0.03%) ⬇️
instrumentations-bucket-1 59.41% <ø> (-0.03%) ⬇️
instrumentations-bucket-10 60.90% <ø> (-0.02%) ⬇️
instrumentations-bucket-11 61.63% <ø> (-0.02%) ⬇️
instrumentations-bucket-12 51.69% <ø> (-0.03%) ⬇️
instrumentations-bucket-13 52.43% <ø> (-0.03%) ⬇️
instrumentations-bucket-14 51.65% <ø> (-0.03%) ⬇️
instrumentations-bucket-2 53.14% <ø> (-0.03%) ⬇️
instrumentations-bucket-3 53.49% <ø> (-0.03%) ⬇️
instrumentations-bucket-4 58.78% <ø> (-0.03%) ⬇️
instrumentations-bucket-5 50.29% <ø> (-0.02%) ⬇️
instrumentations-bucket-6 60.52% <ø> (-0.03%) ⬇️
instrumentations-bucket-7 58.12% <ø> (-0.03%) ⬇️
instrumentations-bucket-8 59.10% <ø> (-0.03%) ⬇️
instrumentations-bucket-9 57.45% <ø> (-0.03%) ⬇️
instrumentations-instrumentation-couchbase 50.97% <ø> (-0.03%) ⬇️
instrumentations-integration-esbuild 34.24% <ø> (ø)
llmobs-ai_anthropic_bedrock 62.84% <ø> (-0.02%) ⬇️
llmobs-bucket-1 61.34% <ø> (-0.02%) ⬇️
llmobs-openai 61.81% <ø> (-0.02%) ⬇️
llmobs-openai-agents_vertex-ai 59.83% <ø> (-0.02%) ⬇️
llmobs-sdk 66.57% <ø> (-0.03%) ⬇️
master-coverage 97.27% <ø> (?)
openfeature 55.71% <ø> (ø)
openfeature-unit 53.22% <ø> (-0.03%) ⬇️
platform-core_esbuild_instrumentations-misc 41.22% <ø> (-0.02%) ⬇️
platform-integration 60.50% <ø> (ø)
platform-shimmer_unit-guardrails_webpack 38.88% <ø> (-0.02%) ⬇️
plugins-bucket-0 56.93% <ø> (-0.02%) ⬇️
plugins-bucket-1 54.05% <ø> (ø)
plugins-bucket-10 61.92% <ø> (?)
plugins-bucket-11 ?
plugins-bucket-16 61.32% <ø> (?)
plugins-bucket-17 61.95% <ø> (+0.61%) ⬆️
plugins-bucket-18 61.34% <ø> (-0.64%) ⬇️
plugins-bucket-19 63.76% <ø> (+2.40%) ⬆️
plugins-bucket-20 ?
plugins-bucket-4 58.32% <ø> (-0.03%) ⬇️
plugins-bullmq_cassandra_cookie 61.40% <ø> (-0.03%) ⬇️
plugins-cookie-parser_crypto_dd-trace-api 56.36% <ø> (-0.03%) ⬇️
plugins-fetch_fs_generic-pool 58.23% <ø> (-0.07%) ⬇️
plugins-google-cloud-pubsub_grpc_handlebars 64.18% <ø> (-0.03%) ⬇️
plugins-hapi_hono_ioredis ?
plugins-hono_ioredis_knex 59.55% <ø> (?)
plugins-knex_langgraph_ldapjs ?
plugins-langgraph_ldapjs_limitd-client 55.57% <ø> (?)
plugins-light-my-request_limitd-client_lodash ?
plugins-lodash_mariadb_memcached 57.63% <ø> (?)
plugins-mariadb_memcached_mercurius ?
plugins-moleculer_mongodb_mongodb-core 61.47% <ø> (?)
plugins-mongodb_mongodb-core_mongoose ?
plugins-multer_mysql_mysql2 58.86% <ø> (-0.03%) ⬇️
plugins-nats_node-serialize_opensearch 60.42% <ø> (-0.03%) ⬇️
plugins-passport-http_pino_postgres 58.60% <ø> (-0.03%) ⬇️
plugins-process_pug_redis 57.40% <ø> (-0.03%) ⬇️
plugins-undici_url_valkey 58.04% <ø> (-0.03%) ⬇️
plugins-vm_winston_ws 59.61% <ø> (-0.03%) ⬇️
profiling 61.54% <ø> (-0.03%) ⬇️
serverless-aws-sdk-aws-sdk 55.12% <ø> (-0.02%) ⬇️
serverless-aws-sdk-base-inject-field 50.92% <ø> (-0.03%) ⬇️
serverless-aws-sdk-bedrockruntime 54.65% <ø> (-0.02%) ⬇️
serverless-aws-sdk-client 56.22% <ø> (-0.03%) ⬇️
serverless-aws-sdk-dynamodb 55.49% <ø> (-0.02%) ⬇️
serverless-aws-sdk-eventbridge 49.71% <ø> (-0.02%) ⬇️
serverless-aws-sdk-kinesis 59.09% <ø> (-0.02%) ⬇️
serverless-aws-sdk-lambda 57.24% <ø> (-0.02%) ⬇️
serverless-aws-sdk-s3 55.59% <ø> (-0.02%) ⬇️
serverless-aws-sdk-serverless-peer-service 59.35% <ø> (-0.02%) ⬇️
serverless-aws-sdk-sns 59.90% <ø> (-0.02%) ⬇️
serverless-aws-sdk-sqs 60.32% <ø> (-0.02%) ⬇️
serverless-aws-sdk-stepfunctions 55.42% <ø> (-0.02%) ⬇️
serverless-aws-sdk-util 51.45% <ø> (-0.03%) ⬇️
serverless-bucket-0 54.13% <ø> (ø)
serverless-bucket-1 58.87% <ø> (-0.03%) ⬇️
test-optimization-cucumber 71.09% <ø> (-0.02%) ⬇️
test-optimization-cypress 64.92% <ø> (+0.07%) ⬆️
test-optimization-jest 72.50% <ø> (-0.15%) ⬇️
test-optimization-mocha 72.17% <ø> (+0.03%) ⬆️
test-optimization-playwright-playwright-atr 59.93% <ø> (-0.02%) ⬇️
test-optimization-playwright-playwright-efd 60.06% <ø> (+0.05%) ⬆️
test-optimization-playwright-playwright-final-status 60.23% <ø> (-0.02%) ⬇️
test-optimization-playwright-playwright-impacted-tests 59.76% <ø> (+0.13%) ⬆️
test-optimization-playwright-playwright-reporting 60.93% <ø> (-0.05%) ⬇️
test-optimization-playwright-playwright-test-management 60.75% <ø> (-0.05%) ⬇️
test-optimization-playwright-playwright-test-span 59.98% <ø> (-0.08%) ⬇️
test-optimization-selenium 59.12% <ø> (-0.10%) ⬇️
test-optimization-testopt 57.65% <ø> (+0.07%) ⬆️
test-optimization-vitest 73.38% <ø> (+0.02%) ⬆️
test-optimization-vitest-browser 58.99% <ø> (+0.04%) ⬆️
test-optimization-webdriverio ?

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@pr-commenter

pr-commenter Bot commented Aug 5, 2026

Copy link
Copy Markdown

Benchmarks

Benchmark execution time: 2026-08-05 01:10:52

Comparing candidate commit dff2f0e in PR branch dependabot/npm_and_yarn/dev-minor-and-patch-dependencies-8f20b514ec with baseline commit d70e6a0 in branch master.

📊 Benchmarking dashboard

Found 0 performance improvements and 0 performance regressions! Performance is the same for 2323 metrics, 35 unstable metrics.

Explanation

This is an A/B test comparing a candidate commit's performance against that of a baseline commit. Performance changes are noted in the tables below as:

  • 🟩 = significantly better candidate vs. baseline
  • 🟥 = significantly worse candidate vs. baseline

We compute a confidence interval (CI) over the relative difference of means between metrics from the candidate and baseline commits, considering the baseline as the reference.

If the CI is entirely outside the configured SIGNIFICANT_IMPACT_THRESHOLD (or the deprecated UNCONFIDENCE_THRESHOLD), the change is considered significant.

Feel free to reach out to #apm-benchmarking-platform on Slack if you have any questions.

More details about the CI and significant changes

You can imagine this CI as a range of values that is likely to contain the true difference of means between the candidate and baseline commits.

CIs of the difference of means are often centered around 0%, because often changes are not that big:

---------------------------------(------|---^--------)-------------------------------->
                              -0.6%    0%  0.3%     +1.2%
                                 |          |        |
         lower bound of the CI --'          |        |
sample mean (center of the CI) -------------'        |
         upper bound of the CI ----------------------'

As described above, a change is considered significant if the CI is entirely outside the configured SIGNIFICANT_IMPACT_THRESHOLD (or the deprecated UNCONFIDENCE_THRESHOLD).

For instance, for an execution time metric, this confidence interval indicates a significantly worse performance:

----------------------------------------|---------|---(---------^---------)---------->
                                       0%        1%  1.3%      2.2%      3.1%
                                                  |   |         |         |
       significant impact threshold --------------'   |         |         |
                      lower bound of CI --------------'         |         |
       sample mean (center of the CI) --------------------------'         |
                      upper bound of CI ----------------------------------'

Unstable benchmarks

These benchmarks have a confidence interval too wide to call a change; treat them as noise rather than signal.

scenario:appsec-appsec-enabled-24

  • unstable execution_time [-209.098ms; +213.903ms] or [-7.784%; +7.963%]

scenario:appsec-appsec-enabled-26

  • unstable execution_time [-241.163ms; +233.787ms] or [-9.425%; +9.137%]

scenario:appsec-appsec-enabled-with-attacks-24

  • unstable execution_time [-154.360ms; +174.720ms] or [-4.978%; +5.635%]

scenario:appsec-appsec-enabled-with-attacks-26

  • unstable execution_time [-189.580ms; +181.802ms] or [-6.526%; +6.259%]

scenario:appsec-control-20

  • unstable execution_time [-124.510ms; +122.411ms] or [-7.544%; +7.417%]

scenario:appsec-control-24

  • unstable execution_time [-118.956ms; +101.729ms] or [-9.610%; +8.218%]

scenario:appsec-control-26

  • unstable execution_time [-125.387ms; +122.087ms] or [-10.073%; +9.807%]

scenario:appsec-iast-no-vulnerability-control-20

  • unstable execution_time [-11.326ms; +18.588ms] or [-4.478%; +7.350%]

scenario:appsec-iast-no-vulnerability-iast-enabled-always-active-20

  • unstable execution_time [-10.972ms; +18.432ms] or [-4.321%; +7.259%]

scenario:debugger-line-probe-with-snapshot-default-24

  • unstable cpu_user_time [-2793.528ms; +2821.630ms] or [-31.405%; +31.721%]
  • unstable execution_time [-2810.742ms; +2856.359ms] or [-29.293%; +29.768%]
  • unstable instructions [-23867.4M instructions; +23955.5M instructions] or [-32.836%; +32.957%]
  • unstable max_rss_usage [-11538.223KB; +11722.223KB] or [-7.240%; +7.355%]
  • unstable throughput [-758.739op/s; +739.623op/s] or [-21.644%; +21.098%]

scenario:debugger-line-probe-with-snapshot-minimal-26

  • unstable cpu_user_time [-2649.946ms; +4176.565ms] or [-27.746%; +43.730%]
  • unstable execution_time [-2654.546ms; +4235.113ms] or [-25.845%; +41.234%]
  • unstable instructions [-23.4G instructions; +37.4G instructions] or [-29.479%; +47.043%]
  • unstable max_rss_usage [-8.481MB; +14.253MB] or [-5.334%; +8.965%]
  • unstable throughput [-826.488op/s; +517.161op/s] or [-25.589%; +16.012%]

scenario:debugger-line-probe-without-snapshot-24

  • unstable cpu_user_time [-2050.456ms; +3176.004ms] or [-24.732%; +38.308%]
  • unstable execution_time [-2198.268ms; +3329.082ms] or [-24.397%; +36.948%]
  • unstable instructions [-17.1G instructions; +27.0G instructions] or [-25.243%; +40.006%]
  • unstable max_rss_usage [-8.462MB; +13.126MB] or [-5.388%; +8.357%]
  • unstable throughput [-863.268op/s; +590.456op/s] or [-23.559%; +16.114%]

scenario:dogstatsd-with-tags-20

  • unstable cpu_user_time [-344.568ms; +333.897ms] or [-7.060%; +6.841%]
  • unstable execution_time [-349.755ms; +339.271ms] or [-7.054%; +6.843%]
  • unstable throughput [-118630.752op/s; +125544.178op/s] or [-7.010%; +7.418%]

scenario:plugin-graphql-long-with-depth-and-collapse-off-20

  • unstable max_rss_usage [-17.055MB; +25.177MB] or [-4.369%; +6.450%]

scenario:plugin-graphql-long-with-depth-off-26

  • unstable max_rss_usage [-14.862MB; +34.344MB] or [-7.151%; +16.524%]

scenario:plugin-graphql-long-with-depth-on-max-20

  • unstable cpu_user_time [-576587.270µs; +577101.070µs] or [-5.020%; +5.024%]
  • unstable execution_time [-589.696ms; +592.961ms] or [-5.031%; +5.059%]
  • unstable throughput [-3.526op/s; +3.464op/s] or [-5.136%; +5.045%]

scenario:plugin-memcached-get-24

  • unstable execution_time [-102.457ms; +157.259ms] or [-4.286%; +6.579%]

scenario:plugin-mongodb-core-plain-find-26

  • unstable execution_time [-125861.676µs; +125578.343µs] or [-6.167%; +6.153%]
  • unstable throughput [-201537.592op/s; +218321.097op/s] or [-4.974%; +5.388%]

@BridgeAR

Copy link
Copy Markdown
Member

@dependabot recreate

@dependabot @github

dependabot Bot commented on behalf of github Aug 10, 2026

Copy link
Copy Markdown
Contributor Author

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Aug 10, 2026
auto-merge was automatically disabled August 10, 2026 20:53

Pull request was closed

@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/dev-minor-and-patch-dependencies-8f20b514ec branch August 10, 2026 20:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependabot dependencies javascript Pull requests that update javascript code semver-patch

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant